home *** CD-ROM | disk | FTP | other *** search
/ Great Canadian Scientists / GCS_CD.iso / mac / PC / GCSData / prefs_o.dxr / 00005_QuizFreq Toggle.ls < prev    next >
Encoding:
Text File  |  1996-09-01  |  331 b   |  14 lines

  1. on mouseUp
  2.   global QuizFreq
  3.   repeat with count = 24 to 27
  4.     set the hilite of cast count to 0
  5.   end repeat
  6.   set the hilite of cast the castNum of sprite the clickOn to 1
  7.   repeat with count = 24 to 27
  8.     if the hilite of cast count = 1 then
  9.       set QuizFreq to abs(count - 27)
  10.     end if
  11.   end repeat
  12.   SetTimeToQuiz()
  13. end
  14.